Quell compiler warnings
authorMatthias Clasen <mclasen@redhat.com>
Sat, 12 Feb 2011 04:59:42 +0000 (23:59 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 12 Feb 2011 13:01:51 +0000 (08:01 -0500)
tests/simple.c

index 6c2b5e9846b861f528d3dbd3933d6be8c732930f..da08064d48559a21f59acf43daa2b0c87eb8ef16 100644 (file)
@@ -31,27 +31,24 @@ int
 main (int argc, char *argv[])
 {
   GtkWidget *window;
-  GtkWidget *button;
 
-  /* FIXME: This is not allowable - what is this supposed to be? */
-  /*  gdk_progclass = g_strdup ("XTerm"); */
   gtk_init (&argc, &argv);
-  
+
   window = g_object_connect (g_object_new (gtk_window_get_type (),
-                                            "type", GTK_WINDOW_TOPLEVEL,
-                                            "title", "hello world",
-                                            "resizable", FALSE,
-                                            "border_width", 10,
-                                            NULL),
-                            "signal::destroy", gtk_main_quit, NULL,
-                            NULL);
-  button = g_object_connect (g_object_new (gtk_button_get_type (),
-                                            "GtkButton::label", "hello world",
-                                            "GtkWidget::parent", window,
-                                            "GtkWidget::visible", TRUE,
-                                            NULL),
-                            "signal::clicked", hello, NULL,
-                            NULL);
+                                           "type", GTK_WINDOW_TOPLEVEL,
+                                           "title", "hello world",
+                                           "resizable", FALSE,
+                                           "border_width", 10,
+                                           NULL),
+                             "signal::destroy", gtk_main_quit, NULL,
+                             NULL);
+  g_object_connect (g_object_new (gtk_button_get_type (),
+                                  "GtkButton::label", "hello world",
+                                  "GtkWidget::parent", window,
+                                  "GtkWidget::visible", TRUE,
+                                  NULL),
+                    "signal::clicked", hello, NULL,
+                    NULL);
   gtk_widget_show (window);
 
   gtk_main ();